home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / util3 / util3.arc / WIPE.BAT < prev    next >
Encoding:
DOS Batch File  |  1988-10-27  |  334 b   |  18 lines

  1. ECHO OFF
  2. CLS
  3. IF "%1" == "" GOTO HELP
  4. ECHO The file %1 is about to be permanently deleted!!
  5. ECHO to exit press [CTRL-BREAK] or
  6. PAUSE
  7. DEL %1
  8. COPY WIPE.DAT %1 > NUL
  9. DEL %1
  10. ECHO %1 deleted
  11. GOTO END
  12. :HELP
  13. ECHO To permanently delete a file, type
  14. ECHO           WIPE  name
  15. ECHO Where name is the file you wish to wipe
  16. :END
  17.  
  18.